home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Small Eiffel 0.4.8 / lib_std / counter.e < prev    next >
Text File  |  1997-04-13  |  233b  |  16 lines

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class COUNTER
  5.  
  6. feature
  7.  
  8.    value: INTEGER;
  9.  
  10.    increment is
  11.       do
  12.      value := value + 1;
  13.       end;
  14.  
  15. end
  16.